home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000389_news@columbia.edu _Tue Sep 24 15:13:57 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id PAA02904 for <kermit.misc@watsun.cc.columbia.edu>; Tue, 24 Sep 1996 15:13:57 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id PAA28195 for kermit.misc@watsun; Tue, 24 Sep 1996 15:13:52 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.os.linux.misc,comp.os.linux.x,dc.org.linux-users,comp.protocols.kermit.misc
  7. Subject: Re: Using Seyon with kermit ?
  8. Date: 24 Sep 1996 19:13:33 GMT
  9. Organization: Columbia University
  10. Lines: 51
  11. Message-ID: <529bst$1bs@apakabar.cc.columbia.edu>
  12. References: <5274pd$a90@news.jhu.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14. Xref: news.columbia.edu comp.os.linux.misc:147526 comp.os.linux.x:47411 dc.org.linux-users:1345 comp.protocols.kermit.misc:5954
  15.  
  16. In article <5274pd$a90@news.jhu.edu>,
  17. Dzung Pham <pham@mashie.ece.jhu.edu> wrote:
  18. : Does anybody have their version of Seyon set up to do kermit transfers?  
  19. : I've tried using a simple 'kermit -r' in my protocols file but that doesn't 
  20. : seem to work.
  21. I've never even seen Seyon, but:
  22.  
  23.  1. The current version of C-Kermit for Linux is 5A(190), soon to be
  24.     replaced by 6.0, which is in Beta test.
  25.  
  26.  2. I assume you are dialing or Telnet'ing out with Seyon.  In that case,
  27.     you have to pass the file descriptor that Seyon is using for the
  28.     connection along to Kermit, using "-j n", where n is the numeric
  29.     file descriptor (for a serial connection) or "-F n" (for a Telnet
  30.     connection).
  31.  
  32. If Seyon does not give you a way to access and pass along the file descriptor,
  33. but it starts up the Kermit program with its standard i/o redirected to its
  34. (Seyon's) communications file descriptor, you can also experiment with the
  35. following method, which worked here in brief tests on SunOS.  Instead of
  36. having Seyon use "kermit -r" or "kermit -s filename" as its Kermit protocol
  37. commands, use something like this:
  38.  
  39.   For serial connections:
  40.  
  41.     kermit -YqQj 0 -r                     <-- to receive
  42.     kermit -YqQj 0 -s filename(s)         <-- to send one or more files
  43.  
  44.   For Telnet connections:
  45.  
  46.     kermit -YqQF 0 -r                     <-- to receive
  47.     kermit -YqQF 0 -s filename(s)         <-- to send one or more files
  48.  
  49. Command line options:
  50.  
  51.   Y    - skip executing the init file
  52.   Q    - use fast file transfer settings
  53.   j 0  - transfer files using file descriptor 0 for a serial connection
  54.   F 0  - transfer files using file descriptor 0 for a Telnet connection
  55.   q    - quiet - no messages
  56.   r    - receive
  57.   s    - send
  58.  
  59. Version 6.0 is required for Q and F.  You can find the current 6.0 Beta at:
  60.  
  61.   ftp://kermit.columbia.edu/kermit/test/tar/cku192.tar.gz (or .Z)
  62.  
  63. Uncompress, untar, "make linux" (or whatever).
  64.  
  65. - Frank